
Originally Posted by
Dave_Sinkula
No, it doesn't. Try reading it again.
[edit]And as a guideline, neither do I. This type of situation is one that goes against the guideline.
I have tried to read it a few times but it seems nonsense when I can write this code
which seems to cover every situation.
Code:
include <stdio.h>
#include <conio.h>
#define FBB(x) {printf("\nMACRO LINE 1 %d n", x); printf("\nMACRO LINE 2 %d n", x);}
main(argc,argv)
int argc;
char *argv[];
{
int num[10];
int i= 0, cnt=0;
printf("\n START");
FBB(0)
printf("\nBEFORE IF");
if (1) FBB(0)
else print("\ndoh!!");
printf("\nAFTER IFF");
FBB(0)
printf("\npast");
return 0;
}